home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / 32SNIPIT.PAK / TEST.C < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  42 lines

  1. // BDE32 3.x - (C) Copyright 1996 by Borland International
  2.  
  3. // test.c
  4. #include "snipit.h"
  5.  
  6. //=====================================================================
  7. //  Function:
  8. //          Test();
  9. //
  10. //  Description:
  11. //          This file provides a framework to use when writing new
  12. //          IDAPI code.
  13. //=====================================================================
  14. void
  15. Test(void)
  16. {
  17.     hDBIDb      hDb;        // Handle to the database
  18.     DBIResult   rslt;       // Return value from IDAPI functions
  19.  
  20.     Screen("*** Test ***\r\n");
  21.  
  22.     BREAK_IN_DEBUGGER();
  23.  
  24.     Screen("    Initializing IDAPI...");
  25.     if (InitAndConnect(&hDb) != DBIERR_NONE)
  26.     {
  27.         Screen("\r\n*** End of Example ***");
  28.         return;
  29.     }
  30.  
  31.     Screen("    Set the directory which is used by the database...");
  32.     rslt = DbiSetDirectory(hDb, (pCHAR) szTblDirectory);
  33.     ChkRslt(rslt, "SetDirectory");
  34.  
  35.     Screen("\r\n    Put test code here:\r\n");
  36.  
  37.     Screen("    Close the database and exit IDAPI...");
  38.     CloseDbAndExit(&hDb);
  39.  
  40.     Screen("\r\n*** End of Example ***");
  41. }
  42.